home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex25.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  280 b   |  17 lines

  1. Program Example25;
  2.  
  3. { Program to demonstrate the FillChar function. }
  4.  
  5. Var S : String[10];
  6.     I : Byte;
  7. begin
  8.   For i:=10 downto 0 do
  9.     begin
  10.     { Fill S with i spaces }
  11.     FillChar (S,SizeOf(S),' ');
  12.     { Set Length }
  13.     SetLength(S,I);
  14.     Writeln (s,'*');
  15.     end;
  16. end.
  17.